home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Spiele / GEMSPIEL / GEMAMIGO / SRC / UI.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-29  |  349 b   |  21 lines

  1. #ifndef ui_h
  2. #define ui_h
  3.  
  4. #include "go.h"
  5.  
  6. class UI {
  7. public:
  8.     virtual void Go()=0;
  9.  
  10.     virtual int operator!()=0;
  11.  
  12.     virtual void PlaceStone(bVal color,int x,int y)=0;
  13.     virtual void RemoveStone(int x,int y)=0;
  14.     virtual void PrisonerReport(int black,int white)=0;
  15.     virtual void ShowResult(int wt, int bp, int bt, int wp)=0;
  16. };
  17.  
  18. extern UI* ui;
  19.  
  20. #endif
  21.